home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / decprom / ds3100.md / RCS / devFsOpTable.c,v < prev    next >
Text File  |  1990-02-16  |  2KB  |  87 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     90.02.16.16.19.06;  author shirriff;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @/* 
  26.  * devFsOpTable.c --
  27.  *
  28.  *    The operation tables for the file system devices.  
  29.  *
  30.  * Copyright 1987, 1988 Regents of the University of California
  31.  * Permission to use, copy, modify, and distribute this
  32.  * software and its documentation for any purpose and without
  33.  * fee is hereby granted, provided that the above copyright
  34.  * notice appear in all copies.  The University of California
  35.  * makes no representations about the suitability of this
  36.  * software for any purpose.  It is provided "as is" without
  37.  * express or implied warranty.
  38.  */
  39.  
  40. #ifdef notdef
  41. static char rcsid[] = "$Header: /sprite/src/boot/dsprom/ds3100.md/RCS/devFsOpTable.c,v 1.1 90/02/13 23:40:07 shirriff Exp Locker: shirriff $ SPRITE (Berkeley)";
  42. #endif not lint
  43.  
  44.  
  45. #include "sprite.h"
  46. #include <kernel/dev.h>
  47. #include <kernel/devFsOpTable.h>
  48.  
  49. extern ReturnStatus DecPromDevOpen();
  50. extern ReturnStatus DecPromDevRead();
  51. static ReturnStatus NullProc();
  52.  
  53.  
  54. /*
  55.  * Device type specific routine table:
  56.  *    This is for the file-like operations as they apply to devices.
  57.  *    DeviceOpen
  58.  *    DeviceRead
  59.  *    DeviceWrite
  60.  *    DeviceIOControl
  61.  *    DeviceClose
  62.  *    DeviceSelect
  63.  *    BlockDeviceAttach
  64.  */
  65.  
  66.  
  67. DevFsTypeOps devFsOpTable[] = {
  68.     /*
  69.      * Simple interface to the routines in the Dec PROM.
  70.      */
  71.     {0, DecPromDevOpen, DecPromDevRead,
  72.             NullProc, NullProc, 
  73.             NullProc, NullProc, NullProc},
  74.  
  75. };
  76.  
  77. int devNumDevices = sizeof(devFsOpTable) / sizeof(DevFsTypeOps);
  78.  
  79.  
  80. static ReturnStatus
  81. NullProc()
  82. {
  83.     return(SUCCESS);
  84. }
  85.  
  86. @
  87.